home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / n_b_v203.zip / B_ETCHED.DMO < prev    next >
Text File  |  1996-07-04  |  3KB  |  43 lines

  1. $if 0
  2.     ┌──────────────────────────╖                        PowerBASIC v3.20
  3.  ┌──┤          DASoft          ╟──────────────────────┬──────────────────╖
  4.  │  ├──────────────────────────╢    Copyright 1995    │ DATE: 1995-10-01 ╟─╖
  5.  │  │ FILE NAME   B_ETCHED.DMO ║          by          ╘════════════════─ ║ ║
  6.  │  │                          ║  Don Schullian, Jr.                     ║ ║
  7.  │  ╘══════════════════════════╝                                         ║ ║
  8.  │ A license is hereby granted to the holder to use this source code in  ║ ║
  9.  │ any program, commercial or otherwise,  without receiving the express  ║ ║
  10.  │ permission of the copyright holder and without paying any royalties,  ║ ║
  11.  │ as long as this code is not distributed in any compilable format.     ║ ║
  12.  │  IE: source code files, PowerBASIC Unit files, and printed listings   ║ ║
  13.  ╘═╤═════════════════════════════════════════════════════════════════════╝ ║
  14.    │                ....................................                   ║
  15.    ╘═══════════════════════════════════════════════════════════════════════╝
  16.  
  17.    Etched boxes are the least obtrusive box in the set. They can provide,
  18.    however a very stunning effect to your screens. They have no black border
  19.    as they are not a button and their border is only 3 pixels wide with the
  20.    inside row reversed to give the etched effect.
  21.  
  22. $endif
  23.  
  24. '.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°
  25. ' ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° °
  26.                                                     '┌───────────────────────
  27. $INCLUDE "DAS-NB01.INC"                             '│
  28. $INCLUDE "DAS-NBV1.INC"                             '│
  29. $INCLUDE "DAS-NBV2.INC"                             '│
  30.                                                     '│
  31. CLS                                                 '│ get the VGA screen
  32. SCREEN 12                                           '│ set-up
  33. GraphicSETUP                                        '│
  34. fLoadDAScolor                                       '│ load 3D color system
  35.                                                     '│
  36. GBoxEtch  0, 0,  63, 63, 3,  8, 13                  '│ blue
  37. GBoxEtch 70, 0, 133, 63, 10, 5, 15                  '│ grey
  38.                                                     '│
  39. WHILE NOT INSTAT : WEND                             '│ a clean exit
  40. CLS : PALETTE : SCREEN 0 : END                      '│
  41.                                                     '└───────────────────────
  42.  
  43.